home *** CD-ROM | disk | FTP | other *** search
- /*
- File: UseLib.h
-
- Contains: Utility class for loading & unloading libraries on-demand
-
- Owned by: Chris Linn
-
- Copyright: © 1993 - 1996 by Apple Computer, Inc., all rights reserved.
-
- Change History (most recent first):
-
- <1> 10/4/96 CSL first checked in
- */
-
- #ifndef _USELIB_
- #define _USELIB_
-
- class CUsingLibrary : private Destructo
- {
- public:
- CUsingLibrary( Str63 libName );
- ~CUsingLibrary();
- Ptr GetEntry( Str255 entryName );
- private:
- CFragConnectionID fConnectionID;
- OSErr fErr;
- };
-
- #endif
-